home *** CD-ROM | disk | FTP | other *** search
-
- /*
- **
- ** $VER: sReboot.c 1.1 (4.6.1998)
- ** sReboot 1.1
- **
- ** Super-small reboot
- **
- ** (C) Copyright 1998 by Roland 'Gizzy' Mainz
- ** All Rights Reserved
- **
- */
-
- /* amiga prototypes */
- #include <clib/exec_protos.h>
-
- /* amiga pragmas */
- #include <pragmas/exec_pragmas.h>
-
- /* version string */
- #include "sReboot_rev.h"
-
- /* version_string */
- STRPTR versionstring = VERSTAG; /* Removing this would save additional ~68 bytes,
- * but I don't like tools without version strings.
- */
-
-
- /* main program entry */
- void main( void )
- {
- struct Library *SysBase = (*((struct Library **)4UL));
-
- /* BUG: We miss a version check here... */
- ColdReboot();
- }
-
-
-